home *** CD-ROM | disk | FTP | other *** search
/ CICA 1993 April / CICA MS Windows - April 1993.iso / unzipped / programr / textview / demo / procs.h < prev    next >
Text File  |  1991-06-12  |  1KB  |  42 lines

  1. /*****************************************************************************
  2.  
  3.     procs.h
  4.     -------
  5.  
  6.     Procedure declarations for the TextView DLL demonstration application
  7.  
  8.     This source is Copyright (c) Alan Phillips 1991. It may be freely used
  9.     and adapted for non-commercial applications. Commercial and ShareWare
  10.     authors should first obtain the written permission of the author.
  11.  
  12.     The source is edited with a tab size of 4.
  13.  
  14. *****************************************************************************/
  15.  
  16. /* copy.c */
  17.  
  18. void    FAR    PASCAL    copy_menu_handler(HWND,WORD);
  19. void    copy_trace_window(HWND);
  20. int        FAR    PASCAL    notify_handler(HWND,LPSTR,int,BOOL);
  21.  
  22. /* main.c */
  23.  
  24. BOOL    FAR        PASCAL    AboutDlgProc(HWND,unsigned,WORD,LONG);
  25. long    FAR        PASCAL    WndProc(HWND,unsigned,WORD,LONG);
  26.  
  27. /* trace.c */
  28.  
  29. void    kill_trace_window(HWND);
  30. void    FAR    PASCAL    menu_handler(HWND,WORD);
  31. void    report_trace_status(void);
  32. void    reset_tracing(HWND);
  33. void    start_tracing(HWND);
  34. BOOL    trace(LPSTR,COLORREF,...);
  35.  
  36. /* utils.c */
  37.  
  38. int        message(LPSTR,LPSTR,WORD,...);
  39. void    hourglass_off(void);
  40. void    hourglass_on(HWND);
  41.  
  42.